home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 15 / Amiga Plus Leser CD 15.iso / Tools / Development / mmu / MuForce / Contributions / Sashimi / Source / SafeRawPutChar.asm next >
Assembly Source File  |  2002-03-12  |  389b  |  26 lines

  1. *
  2. * $Id: SafeRawPutChar.asm 1.1 1998/09/11 22:03:16 olsen Exp olsen $
  3. *
  4. * Sashimi -- intercepts raw serial debugging output on your own machine
  5. *
  6. * Written by Olaf `Olsen' Barthel <olsen@sourcery.han.de>
  7. * Public Domain
  8. *
  9. * :ts=8
  10. *
  11.  
  12.     section    text,code
  13.  
  14.     xref    _NewRawPutChar
  15.  
  16.     xdef    _SafeRawPutChar
  17.  
  18. _SafeRawPutChar:
  19.  
  20.     movem.l    a0-a1,-(sp)
  21.     bsr    _NewRawPutChar
  22.     movem.l    (sp)+,a0-a1
  23.     rts
  24.  
  25.     end
  26.